home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / lib / amiga / x.a < prev   
Text File  |  1994-02-01  |  719b  |  40 lines

  1.  
  2.             ;    (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  3.             ;
  4.             ;    There are two levels of init.    Level 0 is standalone
  5.             ;    init that requires NO external references and is used
  6.             ;    to open libraries and such.
  7.             ;
  8.             ;    Level 1 contains init routines that require libraries
  9.             ;    to already be open.
  10.  
  11.             section autoinit0,code
  12.  
  13.             xdef    __AutoFail0
  14.             moveq.l #0,D0
  15.             rts
  16. __AutoFail0
  17.             moveq.l #1,D0
  18.             rts
  19.  
  20.             section autoinit1,code
  21.  
  22.             xdef    __AutoFail1
  23.             moveq.l #0,D0
  24.             rts
  25. __AutoFail1
  26.             moveq.l #1,D0
  27.             rts
  28.  
  29.             section autoexit0,code
  30.             rts
  31.  
  32.             section autoexit1,code
  33.             rts
  34.  
  35.             section autoconfig,code
  36.             rts
  37.  
  38.             END
  39.  
  40.